    
          .ns-sphere-container {
        width: 600px;
        height: 600px;
        position: relative;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
      }

      .ns-sphere-container:active {
        cursor: grabbing;
      }

      .ns-sphere-world {
        width: 100%;
        height: 100%;
        position: relative;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
      }

      .ns-sphere-image {
        position: absolute;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
        -webkit-transition: -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out;
        pointer-events: auto;
      }

      .ns-sphere-image:hover {
        -webkit-transform: translate(-50%, -50%) scale(1.2) !important;
        transform: translate(-50%, -50%) scale(1.2) !important;
        z-index: 9999 !important;
      }

      .ns-sphere-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
        -webkit-user-drag: none;
      }

      .ns-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        padding: 20px;
        -webkit-animation: nsFadeIn 0.3s ease-out;
        animation: nsFadeIn 0.3s ease-out;
      }

      .ns-modal-overlay.ns-active {
        display: flex;
      }

      .ns-modal-content {
        background: white;
        border-radius: 16px;
        max-width: 400px;
        width: 100%;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        -webkit-animation: nsScaleIn 0.3s ease-out;
        animation: nsScaleIn 0.3s ease-out;
      }

      .ns-modal-image-container {
        position: relative;
        aspect-ratio: 1;
      }

      .ns-modal-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1/1;
      }

      .ns-modal-close {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 36px;
        height: 36px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: background 0.2s;
        transition: background 0.2s;
        z-index: 10;
      }

      .ns-modal-close:hover {
        background: rgba(0, 0, 0, 0.7);
      }

      .ns-modal-nav {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-transition: background 0.2s;
        transition: background 0.2s;
        z-index: 10;
      }

      .ns-modal-nav:hover {
        background: rgba(0, 0, 0, 0.7);
      }

      .ns-modal-nav-prev {
        right: 12px;
      }

      .ns-modal-nav-next {
        left: 12px;
      }

      .ns-modal-counter {
        position: absolute;
        bottom: 12px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 6px 12px;
        border-radius: 16px;
        font-size: 14px;
        z-index: 10;
      }

      .ns-modal-info {
        padding: 24px;
      }

      .ns-modal-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 8px;
        color: #1a202c;
      }

      .ns-modal-description {
        font-size: 16px;
        color: #718096;
        line-height: 1.6;
      }

      @-webkit-keyframes nsFadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes nsFadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @-webkit-keyframes nsScaleIn {
        from {
          -webkit-transform: scale(0.8);
          transform: scale(0.8);
          opacity: 0;
        }
        to {
          -webkit-transform: scale(1);
          transform: scale(1);
          opacity: 1;
        }
      }

      @keyframes nsScaleIn {
        from {
          transform: scale(0.8);
          opacity: 0;
        }
        to {
          transform: scale(1);
          opacity: 1;
        }
      }

      @media (max-width: 768px) {
        .ns-sphere-container {
          width: 400px;
          height: 400px;
        }
      }

      @media (max-width: 480px) {
        .ns-sphere-container {
          width: 320px;
          height: 320px;
        }
      }
      
      .nias-3dcontainer{
          display: none;
      }
.circlenias3d  .nias-3dcontainer{
        display: block;
    }
    
    